home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Answers 1998 January
/
PC Answers Issue 49 Cover CD January 1998.iso
/
Apps
/
Director
/
DATA.Z
/
CREDITS.DCR
/
behaviors_6_sing.ls
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-05-10
|
349 b
|
24 lines
property mySong
on mouseUp me
startSinging(me)
end
on startSinging me
if not soundBusy(1) then
puppetSound(mySong)
end if
end
on beginSprite me
startSinging(me)
end
on getBehaviorDescription
return "Singing behavior."
end
on getPropertyDescriptionList
return [#mySong: [#comment: "Song:", #format: #sound, #default: EMPTY]]
end